crypto/elliptic/internal/fiat.P224Element.Sub (method)
18 uses
crypto/elliptic/internal/fiat (current package)
p224.go#L73: var p224MinusOneEncoding = new(P224Element).Sub(
p224.go#L107: func (e *P224Element) Sub(t1, t2 *P224Element) *P224Element {
crypto/elliptic/internal/nistec
p224.go#L104: x3.Sub(x3, threeX)
p224.go#L153: t3.Sub(t3, t4) // t3 := t3 - t4
p224.go#L158: t4.Sub(t4, x3) // t4 := t4 - X3
p224.go#L163: y3.Sub(x3, y3) // Y3 := X3 - Y3
p224.go#L165: x3.Sub(y3, z3) // X3 := Y3 - Z3
p224.go#L168: z3.Sub(t1, x3) // Z3 := t1 - X3
p224.go#L173: y3.Sub(y3, t2) // Y3 := Y3 - t2
p224.go#L174: y3.Sub(y3, t0) // Y3 := Y3 - t0
p224.go#L179: t0.Sub(t0, t2) // t0 := t0 - t2
p224.go#L185: x3.Sub(x3, t1) // X3 := X3 - t1
p224.go#L209: y3.Sub(y3, z3) // Y3 := Y3 - Z3
p224.go#L212: x3.Sub(t1, y3) // X3 := t1 - Y3
p224.go#L219: z3.Sub(z3, t2) // Z3 := Z3 - t2
p224.go#L220: z3.Sub(z3, t0) // Z3 := Z3 - t0
p224.go#L225: t0.Sub(t0, t2) // t0 := t0 - t2
p224.go#L231: x3.Sub(x3, z3) // X3 := X3 - Z3